home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / phnlgdvk.lha / PhoneLog / src / PhoneLogScannerSource.h < prev    next >
C/C++ Source or Header  |  1996-05-03  |  1KB  |  32 lines

  1. # ifndef xyPhoneLogScannerSource
  2. # define xyPhoneLogScannerSource
  3.  
  4. /* $Id: Source.h,v 1.7 1992/08/07 15:29:41 grosch rel $ */
  5.  
  6. extern int  PhoneLogScanner_BeginSource(char * FileName);
  7.  
  8.    /*
  9.       PhoneLogScanner_BeginSource is called from the scanner to open files.
  10.       If not called input is read form standard input.
  11.    */
  12.  
  13. extern int  PhoneLogScanner_GetLine(int File, char * Buffer, int Size);
  14.  
  15.    /*
  16.       PhoneLogScanner_GetLine is called to fill a buffer starting at address 'Buffer'
  17.       with a block of maximal 'Size' characters. Lines are terminated
  18.       by newline characters (ASCII = 0xa). PhoneLogScanner_GetLine returns the number
  19.       of characters transferred. Reasonable block sizes are between 128
  20.       and 2048 or the length of a line. Smaller block sizes -
  21.       especially block size 1 - will drastically slow down the scanner.
  22.    */
  23.  
  24. extern void PhoneLogScanner_CloseSource(int File);
  25.  
  26.    /*
  27.       PhoneLogScanner_CloseSource is called from the scanner at end of file respectively
  28.       at end of input. It can be used to close files.
  29.    */
  30.  
  31. # endif
  32.